Effects of Cosmological Parameters on Mira Titan Emulator HMF¶

In [237]:
import numpy as np
import MiraTitanHMFemulator
import bokeh
from bokeh.io import output_notebook, show, curdoc
from bokeh.plotting import figure
from bokeh.layouts import row, column
from bokeh.models import ColumnDataSource, HoverTool, Slider, CustomJS
from bokeh.palettes import Spectral, d3, RdYlGn
output_notebook()
Loading BokehJS ...

$$\Omega_m h^2$$¶

In [244]:
show(column(row(HMF_plots[0][0], ratio_plots[0][0]), row(HMF_plots[1][0], ratio_plots[1][0])))

$$\Omega_b h^2$$¶

In [245]:
show(column(row(HMF_plots[0][1], ratio_plots[0][1]), row(HMF_plots[1][1], ratio_plots[1][1])))

$$\Omega_{\nu} h^2$$¶

In [246]:
show(column(row(HMF_plots[0][2], ratio_plots[0][2]), row(HMF_plots[1][2], ratio_plots[1][2])))

$$n_s$$¶

In [247]:
show(column(row(HMF_plots[0][3], ratio_plots[0][3]), row(HMF_plots[1][3], ratio_plots[1][3])))

$$h$$¶

In [248]:
show(column(row(HMF_plots[0][4], ratio_plots[0][4]), row(HMF_plots[1][4], ratio_plots[1][4])))

$$\sigma_8$$¶

In [249]:
show(column(row(HMF_plots[0][5], ratio_plots[0][5]), row(HMF_plots[1][5], ratio_plots[1][5])))

$$w_0$$¶

In [250]:
show(column(row(HMF_plots[0][6], ratio_plots[0][6]), row(HMF_plots[1][6], ratio_plots[1][6])))

$$w_b$$¶

In [251]:
show(column(row(HMF_plots[0][7], ratio_plots[0][7]), row(HMF_plots[1][7], ratio_plots[1][7])))